POV-Ray : Newsgroups : povray.general : Question on plane Syntax : Re: Question on plane Syntax Server Time
1 Aug 2024 12:27:51 EDT (-0400)
  Re: Question on plane Syntax  
From: Hasan3
Date: 9 Oct 2005 15:05:01
Message: <web.434968689b6ef72cc8a538750@news.povray.org>
"Ken Hutson" <ken### [at] goettingcom> wrote:
> The first three plane definitions pass through the parser. The fourth
> generates an error. Why?
>
> plane{
>  <0,0,1>,1
>  pigment{rgb<1,1,1>}
> }
>
> plane{
>  <0,0,1>
>  1
>  pigment{rgb<1,1,1>}
> }
>
> plane{
>  <0,0,1>,-1
>  pigment{rgb<1,1,1>}
> }
>
> plane{
>  <0,0,1>
>  -1
>  pigment{rgb<1,1,1>}
> }
>
> Kenneth Hutson



4.plane :
You have forgotten "," : it must like that:

plane{
 <0,0,1>,
 -1
 pigment{rgb<1,1,1>}
}


Hasan...


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.